2016-06-27 01:45:38 +02:00
|
|
|
|
using System.Collections.Generic;
|
2019-03-29 14:04:12 +01:00
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|