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

9 lines
165 B
C#
Raw Normal View History

2024-08-05 03:22:49 +03:00
namespace BGC.Common.Catalog.Models
{
public class Theme
{
public long Id { get; set; }
public string? Name { get; set; }
}
}