2019-10-27 19:06:47 +01:00

16 lines
377 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace TenantManager.Models
{
public class Method
{
public int MethodId { get; set; }
public String MethodName { get; set; }
public ICollection<Customisation> Customisations { get; set; }
}
}