You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FileModel.cs 309B

12345678910111213
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. using System.Diagnostics.CodeAnalysis;
  3. namespace SecureSharing.Data.Data;
  4. public class FileModel
  5. {
  6. public int Id { get; set; }
  7. public string Name { get; set; }
  8. [NotNull]
  9. [ForeignKey("MessageId")]
  10. public int MessageId { get; set; }
  11. }