WinFormTools/Entity/BaseEntity.cs

14 lines
217 B
C#
Raw Normal View History

2021-11-14 22:46:27 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2022-03-02 21:29:52 +08:00
namespace Entity
2021-11-14 22:46:27 +08:00
{
2021-11-14 23:28:18 +08:00
public class BaseEntity
2021-11-14 22:46:27 +08:00
{
2022-03-02 21:29:52 +08:00
public int Id { get; set; }
2021-11-14 22:46:27 +08:00
}
}