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

10 lines
218 B
C#

namespace BGC.Common.Catalog.Models
{
public class Author
{
public long Id { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
}
}