feat: pivot to social media workflow app
This commit is contained in:
16
backend/Modules/Assets/Data/Asset.cs
Normal file
16
backend/Modules/Assets/Data/Asset.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user