diff options
Diffstat (limited to 'api/WhatApi/Tables/Content.cs')
| -rw-r--r-- | api/WhatApi/Tables/Content.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/api/WhatApi/Tables/Content.cs b/api/WhatApi/Tables/Content.cs new file mode 100644 index 0000000..79f2579 --- /dev/null +++ b/api/WhatApi/Tables/Content.cs @@ -0,0 +1,12 @@ +using System.Net; + +namespace WhatApi.Tables; + +public class Content +{ + public Guid Id { get; set; } + public string Mime { get; set; } + public DateTime Created { get; set; } + public Guid BlobId { get; set; } + public IPAddress Ip { get; set; } +}
\ No newline at end of file |
