37 lines
888 B
C#
37 lines
888 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
using MongoDB.Bson;
|
||
|
|
using MongoDB.Bson.Serialization.Attributes;
|
||
|
|
|
||
|
|
namespace SkyArtShop.Models;
|
||
|
|
|
||
|
|
public class PortfolioProject
|
||
|
|
{
|
||
|
|
[BsonId]
|
||
|
|
[BsonRepresentation(BsonType.ObjectId)]
|
||
|
|
public string? Id { get; set; }
|
||
|
|
|
||
|
|
[Required]
|
||
|
|
public string Title { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
[Required]
|
||
|
|
public string CategoryId { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
public string Description { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
public string FeaturedImage { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
public List<string> Images { get; set; } = new List<string>();
|
||
|
|
|
||
|
|
public string ProjectDate { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
public int DisplayOrder { get; set; }
|
||
|
|
|
||
|
|
public bool IsActive { get; set; } = true;
|
||
|
|
|
||
|
|
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
||
|
|
|
||
|
|
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
|
||
|
|
}
|