10 lines
246 B
C#
10 lines
246 B
C#
namespace Hutopy.Web.Features.Contents.Data;
|
|
|
|
public class Subscription
|
|
{
|
|
public Guid Id { get; init; }
|
|
public Guid CreatorId { get; init; }
|
|
public Guid CreatedBy { get; init; }
|
|
public DateTimeOffset CreatedAt { get; init; }
|
|
}
|