17 lines
587 B
C#
17 lines
587 B
C#
namespace Socialize.Modules.Assets.Data;
|
|
|
|
public class Asset
|
|
{
|
|
public Guid Id { get; init; }
|
|
public Guid WorkspaceId { get; set; }
|
|
public Guid ContentItemId { get; set; }
|
|
public required string AssetType { get; set; }
|
|
public required string SourceType { get; set; }
|
|
public required string DisplayName { get; set; }
|
|
public string? GoogleDriveFileId { get; set; }
|
|
public string? GoogleDriveLink { get; set; }
|
|
public string? PreviewUrl { get; set; }
|
|
public int CurrentRevisionNumber { get; set; }
|
|
public DateTimeOffset CreatedAt { get; init; }
|
|
}
|