- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Text;
- namespace WpfApp
- {
- [Table("UnitName")]
- public class UnitName
- {
- public int Id { get; set; }
- public string UnitName { get; set; }
- }
- }
|