bgc/BGC.Common/Catalog/Models/Theme.cs

9 lines
165 B
C#

namespace BGC.Common.Catalog.Models
{
public class Theme
{
public long Id { get; set; }
public string? Name { get; set; }
}
}