14 lines
427 B
C#
14 lines
427 B
C#
namespace Socialize.Modules.Assets.Data;
|
|
|
|
public class AssetRevision
|
|
{
|
|
public Guid Id { get; init; }
|
|
public Guid AssetId { get; set; }
|
|
public int RevisionNumber { get; set; }
|
|
public required string SourceReference { get; set; }
|
|
public string? PreviewUrl { get; set; }
|
|
public string? Notes { get; set; }
|
|
public Guid? CreatedByUserId { get; set; }
|
|
public DateTimeOffset CreatedAt { get; init; }
|
|
}
|