9 lines
223 B
C#
9 lines
223 B
C#
namespace JSMR.Domain.Entities;
|
|
|
|
public class Creator
|
|
{
|
|
public int CreatorId { get; set; }
|
|
public required string Name { get; set; }
|
|
public bool Favorite { get; set; }
|
|
public bool Blacklisted { get; set; }
|
|
} |