mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
Use machine photo view model in machine photos index admin page.
This commit is contained in:
16
cicm_web/Areas/Admin/Models/MachinePhotoViewModel.cs
Normal file
16
cicm_web/Areas/Admin/Models/MachinePhotoViewModel.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user