mirror of
https://github.com/claunia/marechai.git
synced 2026-07-08 17:57:08 +00:00
- Implemented WwpcImportReviewDialog for reviewing pending software imports from WinWorldPC. - Created WwpcImportsQueue page for managing the import queue with filtering options. - Added WwpcImportsService to handle API interactions for WinWorldPC imports. - Updated navigation menu to include a link to the WinWorldPC Imports page. - Added localization support for the new imports feature in German, Spanish, French, Italian, and Dutch.
21 lines
464 B
C#
21 lines
464 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Marechai.Data;
|
|
|
|
namespace Marechai.Database.Models;
|
|
|
|
public class WwpcCategory : BaseModel<int>
|
|
{
|
|
[Required]
|
|
[StringLength(256)]
|
|
public string Name { get; set; }
|
|
|
|
[Required]
|
|
public WwpcProductType ProductType { get; set; }
|
|
|
|
public DateTime? LastCrawledOn { get; set; }
|
|
|
|
public virtual ICollection<WwpcSoftware> Softwares { get; set; }
|
|
}
|