12 lines
269 B
C#
12 lines
269 B
C#
namespace decePubClient.Models
|
|
{
|
|
public class Media
|
|
{
|
|
public string FileName { get; set; }
|
|
public string Url { get; set; }
|
|
public string ContentType { get; set; }
|
|
public string AltText { get; set; }
|
|
public byte[] Blob { get; set; } //TODO TEMPORARY
|
|
}
|
|
}
|