Files
BeWoPlaner/BeWoPlanerMobil/Models/ServiceCategoryModel.cs

24 lines
531 B
C#
Raw Normal View History

2016-06-27 01:45:38 +02:00
using System.Collections.Generic;
2016-06-27 01:45:38 +02:00
using BS.Shared;
using BS.Shared.DataContracts;
namespace BeWoPlanerMobil.Models
{
public class ServiceCategoryModel
{
public string Name { get; set; }
public bool IsDefault { get; set; }
public decimal Percentage { get; set; }
public long? ServiceCategoryOid { get; set; }
public int Position { get; set; }
public AccountingvisibilityType? OhneHilfeplan { get; set; }
public List<ServiceDescriptionDC> ServiceDescriptions { get; set; }
}
}