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.

23 lines
476 B

11 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Sevomin.Models
  8. {
  9. public class JobParameter
  10. {
  11. [Key]
  12. public long Id { get; set; }
  13. public long ParameterId { get; set; }
  14. public virtual Parameter Parameter { get; set; }
  15. public long JobId { get; set; }
  16. public virtual Job Job {get;set;}
  17. }
  18. }