mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
16 lines
391 B
C#
16 lines
391 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace cicm_web.Areas.Admin.Models
|
|
{
|
|
public class MachinePhotoViewModel : BaseViewModel<Guid>
|
|
{
|
|
public string Author;
|
|
public string License;
|
|
public string Machine;
|
|
[DisplayName("Uploaded")]
|
|
public DateTime UploadDate;
|
|
[DisplayName("Uploaded by")]
|
|
public string UploadUser;
|
|
}
|
|
} |