- using System;
- using System.Collections.Generic;
- using System.IO.Pipes;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SnapshotWinFormsApp.Entities.OldHotline;
- public abstract class OldBaseEntity<T>
- {
- public virtual T Id { get; set; }
- }
|