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

10 lines
218 B
C#
Raw Normal View History

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