21 lines
349 B
C#
21 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
namespace DHSoftware.Models
|
|
{
|
|
public class Camera
|
|
{
|
|
public string DeviceName { get; set; }
|
|
public string Alias { get; set; }
|
|
public string ImagePath { get; set; }
|
|
}
|
|
|
|
|
|
|
|
}
|