17 lines
334 B
C#
17 lines
334 B
C#
namespace LaaProduction.Services.Models
|
|
{
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public class OrderFiles
|
|
{
|
|
public Int32 OrderId { get; set; }
|
|
|
|
public Int32 FileId { get; set; }
|
|
|
|
public String FileContent { get; set; }
|
|
|
|
public IEnumerable<Int32> Files { get; set; }
|
|
}
|
|
} |