blob: 79f25791ba1017278cd72252dd8f463d0291f571 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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; }
}
|