using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;

namespace Dfs.WayneChina.PosModelMini
{
    public class PosItemGroupSystem
    {
        public Guid Id { get; set; }

        [Required]
        [MaxLength(80)]
        public string Name { get; set; }

        public DateTime CreatedDateTime { get; set; }

        public string Description { get; set; }

        public virtual List<BusinessUnit> AppliedInBusinessUnits { get; set; }
    }
}