UserApps.cs 337 B

1234567891011121314
  1. using Microsoft.AspNetCore.Identity;
  2. using Microsoft.EntityFrameworkCore;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace VolgaIT.Models
  6. {
  7. [Keyless]
  8. public class UserApps
  9. {
  10. public string UserId { get; set; }
  11. public string AppId { get; set; }
  12. }
  13. }