13 lines
379 B
C#
13 lines
379 B
C#
namespace JSMR.Domain.Entities;
|
|
|
|
public class Circle
|
|
{
|
|
public int CircleId { get; set; }
|
|
public required string MakerId { get; set; }
|
|
public required string Name { get; set; }
|
|
public bool Blacklisted { get; set; }
|
|
public bool Favorite { get; set; }
|
|
public bool Spam { get; set; }
|
|
|
|
public virtual ICollection<VoiceWork> VoiceWorks { get; set; } = [];
|
|
} |