9 lines
205 B
C#
Raw Normal View History

2025-03-24 19:24:16 +08:00
namespace DHSoftware.Models
2025-03-07 09:06:46 +08:00
{
public class Camera
{
public string DeviceName { get; set; }
public string Alias { get; set; }
public string ImagePath { get; set; }
}
2025-03-24 19:24:16 +08:00
}