Config3.cs

16 lines | 323 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Test_ConfigurationTool.Entities
{
    public class Config3
    {
        public int ID { set; get; }
        public string Name { set; get; }
        public DateTime Date { set; get; }
    }
}