Files
wgenerator/API/Models/File.cs
Benjamin Ifland bbe9f33571 creating oData client
testing odata interface
2019-03-17 17:32:25 +01:00

10 lines
244 B
C#

using System;
namespace API.Models {
public class File {
public int ID { get; set; }
public Guid ReferenceFile { get; set; }
public string Name { get; set; }
public FileType FileType { get; set; }
}
}