AuthorBuddy/Data/UserEntity.cs

9 lines
186 B
C#
Raw Normal View History

2026-05-17 07:27:18 +02:00
namespace AuthorBuddy.Web.Data;
public class UserEntity
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public bool IsCurrent { get; set; }
}