Exercise Files

This commit is contained in:
Jess Chadwick
2018-06-06 23:57:58 -04:00
commit 20458e435e
4436 changed files with 1359080 additions and 0 deletions

View File

@ -0,0 +1,13 @@
namespace HPlusSports.Models
{
public class Image
{
public long Id { get; set; }
public string Url { get; set; }
public byte[] Content { get; set; }
public string ContentType { get; set; }
}
}