using System.Collections.Generic; 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 ServiceDescriptions { get; set; } } }