AuthorBuddy/Data/UserEntity.cs
2026-05-20 06:12:54 +02:00

8 lines
186 B
C#

namespace AuthorBuddy.Web.Data;
public class UserEntity
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public bool IsCurrent { get; set; }
}