mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
14 lines
289 B
C#
14 lines
289 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Cicm.Database.Models
|
|
{
|
|
public class MachinePhoto : BasePhoto
|
|
{
|
|
[Url]
|
|
public string Source { get; set; }
|
|
|
|
public virtual Machine Machine { get; set; }
|
|
|
|
public int MachineId { get; set; }
|
|
}
|
|
} |