記事詳細


投稿日
2025年03月30日18時53分00秒
タイトル

5-1 Genreクラス

内容

using System.ComponentModel;

using System.ComponentModel.DataAnnotations;

namespace SkyoceanHome.Models

{

    public class skyGenre

    {

        public int Id { get; set; }

        [DisplayName("カテゴリ-名")]

        [Required]

        public string Name { get; set; } = string.Empty;

        [DisplayName("説明")]

        [Required]

        public string Description { get; set; } = string.Empty;

        [DisplayName("画像を選択")]

        [Required]

        public string ImageUrl { get; set; } = string.Empty;

        //Navigation property

        public ICollection<skyArticle> skyArticles { get; set; }

    }

}

添付画像

Current Image
Genreのカテゴリ-名
MVCTutorials
編集 | 記事一覧