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

21 lines
593 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace DSWeb.Areas.SoftMng.DB
{
[Table("FeedbackSub")]
public class FeedbackSub
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int id { get; set; }
public string description { get; set; }
public string attachMent { get; set; }
public DateTime createDate { get; set; }
public string feedbackID { get; set; }
}
}