presence/domain/Entity/TrafficEntity.cs

15 lines
268 B
C#
Raw Normal View History

2024-12-10 05:26:38 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace domain.Entity
{
public class TrafficEntity
{
public int Id { get; set; }
public string Name { get; set; }
}
}