1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MES.Production.Entity
- {
- public class Category
- {
- public Category(string id, string age)
- {
- this.Id = id;
- this.Name = age;
- }
- public string Id { get; set; }
- public string Name { get; set; }
-
- }
- }
|